#include <iostream.h>
void hello()
    {
        cout << "Witaj, wiecie!" << endl; 
    }
void hello2()
    {
        cout << "Witaj, wiecie po raz drugi!" << endl; 
    }

void main()
    {
        cout << "funkcja main" << endl;
        hello();
        hello2();
    }
